home *** CD-ROM | disk | FTP | other *** search
- /*
- * Copyright 1992-1993, 1994, Silicon Graphics, Inc.
- * All Rights Reserved.
- *
- * This is UNPUBLISHED PROPRIETARY SOURCE CODE of Silicon Graphics, Inc.;
- * the contents of this file may not be disclosed to third parties, copied or
- * duplicated in any form, in whole or in part, without the prior written
- * permission of Silicon Graphics, Inc.
- *
- * RESTRICTED RIGHTS LEGEND:
- * Use, duplication or disclosure by the Government is subject to restrictions
- * as set forth in subdivision (c)(1)(ii) of the Rights in Technical Data
- * and Computer Software clause at DFARS 252.227-7013, and/or in similar or
- * successor clauses in the FAR, DOD or NASA FAR Supplement. Unpublished -
- * rights reserved under the Copyright Laws of the United States.
- */
- #ifndef INDICATORS_H
- #define INDICATORS_H
-
- #include "Defines.h"
-
- void draw_needle(Boolean draw_it);
- void draw_dial(
- float world_diam,
- float world_per_pixel,
- float start_angle, float end_angle,
- float small_tick_size, float big_tick_size,
- float label_pos,
- int start_value, int end_value,
- int small_tick_increment,
- float label_multiplier,
- int small_ticks_per_big_tick,
- int big_ticks_per_label);
- void bulbous_box(float x1, float y1, float x2, float y2, float diam);
- void draw_steering_spoke(Boolean draw_it);
- void draw_steering_spokes(Boolean draw_it, float steering);
-
-
-
-
-
-
-
-
- #endif
-